home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / shadez.swf / scripts / com / kongregate / as3 / client / services / KongregateServiceShadow.as < prev    next >
Encoding:
Text File  |  2011-08-19  |  851 b   |  37 lines

  1. package com.kongregate.as3.client.services
  2. {
  3.    public class KongregateServiceShadow extends AbstractShadowService implements IKongregateServices
  4.    {
  5.        
  6.       
  7.       public function KongregateServiceShadow()
  8.       {
  9.          super();
  10.       }
  11.       
  12.       public function getName() : String
  13.       {
  14.          if(true)
  15.          {
  16.             alert("IKongregateServices","getName");
  17.          }
  18.          return "Guest";
  19.       }
  20.       
  21.       public function connect(param1:Number = -1) : Boolean
  22.       {
  23.          alert("IKongregateServices","connect",arguments);
  24.          return true;
  25.       }
  26.       
  27.       public function getPlayerInfo(param1:Function) : void
  28.       {
  29.          if(true)
  30.          {
  31.             alert("IKongregateServices","getPlayerInfo");
  32.             param1(new Object());
  33.          }
  34.       }
  35.    }
  36. }
  37.